ImageGear v26.3 - Updated November 9, 2022
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearMetadataNodeList Class / LookUpLeaf Method / LookUpLeaf(String[]) Method
Path to a data element in the metadata structure.




In This Topic
LookUpLeaf(String[]) Method
In This Topic
This method searches the node list recursively for a leaf, according to the path parameter. Length of the path should correspond to the metadata structure depth, at which the desired node is located.

If a leaf is not present, the method returns null.

The method does not search in the subtrees of the node list.

Syntax
'Declaration
 
Public Overloads Function LookUpLeaf( _
   ByVal path() As String _
) As ImGearMetadataLeaf
 
'Usage
 
Dim instance As ImGearMetadataNodeList
Dim path() As String
Dim value As ImGearMetadataLeaf
 
value = instance.LookUpLeaf(path)

Parameters

path
Path to a data element in the metadata structure.

Return Value

Instanse of ImGearMetadataLeaf class object.
See Also